home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Bytes: Money & Finance
/
PowerBytes Money and Finance CD-ROM 01
/
PowerBytes Money and Finance CD-ROM 01.iso
/
Demos
/
TrueBASIC Demo
/
User's Guide
/
Sqroot
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1985-06-20
|
268 b
|
10 lines
|
[
TEXT/TRUE
]
! Square roots.
!
PRINT "Number", "Square Root" ! Print labels
PRINT ! Leave blank line
FOR number = 0 to 1 step .1 ! Go from 0 to 1 in small steps
PRINT number, Sqr(number) ! Print number and square root
NEXT number
END